// Aufgabe_3_4_RGB_mit_Maus

function setup() {
 createCanvas(255, 255);
}

function draw() {
 background(255, mouseX, mouseY);
 fill(0);
 textSize(20);
 text("G = " +mouseX, 30, 30);
 text("B = " +mouseY, 150, 30);
}
